home *** CD-ROM | disk | FTP | other *** search
/ Robotics & Artificial Int…3 (Professional Edition) / Robotics & Artificial Intelligence Tools 2003 (Professional Edition).iso / robot software / webots-kros-1.0.1_setup.exe / {app} / kteam / include / sys / param.h < prev    next >
C/C++ Source or Header  |  1999-12-23  |  389b  |  19 lines

  1. /* This is a dummy <sys/param.h> file, not customized for any
  2.    particular system.  If there is a param.h in libc/sys/SYSDIR/sys,
  3.    it will override this one.  */
  4.  
  5. #ifndef _SYS_PARAM_H
  6. # define _SYS_PARAM_H
  7.  
  8. # define HZ (60)
  9. # define NOFILE    (60)
  10. # define PATHSIZE (1024)
  11.  
  12. #ifdef __i386__
  13. #define BIG_ENDIAN 4321
  14. #define LITTLE_ENDIAN 1234
  15. #define BYTE_ORDER LITTLE_ENDIAN
  16. #endif
  17.  
  18. #endif
  19.